home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TEST / LOCKRAM.ASM < prev    next >
Assembly Source File  |  1997-01-08  |  387b  |  21 lines

  1. ;this takes forever under win95 (like 3 mins) and sometimes crashes
  2.  
  3. ; locking all RAM is not recomended (see lock.asm in the \lib\src dir)
  4.  
  5. include qlib.inc
  6. include stdio.inc
  7. include alloc.inc
  8.  
  9. .code
  10. main proc
  11.   callp coreleft
  12.   callp printf,"Total RAM    =%i\n",eax
  13.   callp printf,"Locking RAM..."
  14.   callp lock_all,1
  15.   callp printf,"%i\n",eax
  16.   ret
  17. main endp
  18.  
  19. end
  20.  
  21.